@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  --header_h: 6.25rem;
  --container: 14.8125rem;
  outline: none;
  font-weight: 500;
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
.bg {
  background: #198D9F;
}
.c {
  color: #198D9F;
}
.phone_show_990,
.phone_show_767 {
  display: none;
}
.pagination {
  display: flex;
  padding-left: 0;
  margin: 1.25rem 0;
  border-radius: 0.25rem;
  justify-content: center;
}
.pagination > li {
  margin: 0 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.pagination > li:hover {
  background: #198D9F;
  color: #fff;
  text-align: center;
}
.pagination > li:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3.125rem;
}
.pagination > li.active {
  background: #198D9F;
  color: #fff;
}
.pagination > li.active a {
  color: #fff;
}
.pagination > li.disabled:hover {
  color: #333;
  background: #FFF;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.gap15 {
  gap: 0.9375rem;
}
.gap20 {
  gap: 1.25rem;
}
.gap30 {
  gap: 1.875rem;
}
.gap40 {
  gap: 2.5rem;
}
.gap50 {
  gap: 3.125rem;
}
.foot-fot {
  background: #2D3333;
  display: none;
}
.foot-fot .foota2 {
  font-size: 1rem;
  color: #fff;
}
.foot-fot .foota2 a {
  font-size: 1rem;
  color: #fff;
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
.search_more {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #444;
  position: relative;
  display: inline-block;
}
.search_more:hover {
  color: #198D9F;
}
.search_more:hover::before {
  background: #198D9F;
}
.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}
.line1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.trans {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.er-ul {
  position: absolute;
  width: 18.75rem;
  left: 50%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
  right: 0;
  top: calc(100% + 0.625rem);
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  border-radius: 1.875rem;
  padding: 0.6875rem 2.1875rem;
}
.er-ul li {
  color: #676767;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 4.625rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.er-ul li:hover a {
  color: #198D9F !important;
}
.er-ul li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
.er-ul li:nth-child(1) {
  padding-top: 0;
}
.er-ul li:nth-last-child(1) {
  border-bottom: unset;
  padding-bottom: 0;
}
header .center > ul > li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .nav_ul > li:hover .er-ul {
  transform: none;
  opacity: 1;
}
.sec_ul {
  width: 100%;
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  padding-left: var(--container);
  padding-right: var(--container);
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
}
.sec_ul .sec_con {
  border-radius: 1.875rem;
  background: #FFF;
  padding: 2.1875rem 3rem 9.1875rem 2.1875rem;
  display: flex;
  justify-content: space-between;
}
.sec_ul .le {
  width: 25%;
  padding-right: 6.25rem;
}
.sec_ul .le ul li {
  border-top: 1px solid #D9D9D9;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sec_ul .le ul li:nth-child(1) {
  border-top: unset;
}
.sec_ul .le ul li:nth-last-child(1) {
  border-bottom: 1px solid #D9D9D9;
}
.sec_ul .le ul li a {
  padding-left: 1.8125rem;
  padding-right: 1.75rem;
  color: #676767;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 3.5625rem;
}
.sec_ul .le ul li:hover,
.sec_ul .le ul li.active {
  border-color: #fff;
}
.sec_ul .le ul li:hover a,
.sec_ul .le ul li.active a {
  border-radius: 1.875rem;
  background-color: #198D9F;
  color: #fff;
}
.sec_ul .le ul li:hover + li,
.sec_ul .le ul li.active + li {
  border-top: #fff;
}
.sec_ul .ri {
  width: 75%;
}
.sec_ul .ri .con {
  display: none;
}
.sec_ul .ri .con.active {
  display: block;
}
.sec_ul .ri .con .pro_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.75rem 1.625rem;
}
.sec_ul .ri .con .pro_list .over {
  border-radius: 1.25rem;
  background: #F5F5F5;
  padding: 2.0625rem 0.6875rem;
}
.sec_ul .ri .con .pro_list .text {
  color: #838383;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  padding-top: 1.0625rem;
}
header .center > ul > li:hover .sec_ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .nav_ul > li:hover .sec_ul {
  transform: none;
  opacity: 1;
}
.logo_phone img {
  width: 7.5rem;
}
.cf {
  color: #fff !important;
}
.c0 {
  color: #000 !important;
}
.phone_weibu {
  background: #0A0A0A;
  display: none;
}
.phone_weibu .mobMenu > li > a {
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}
.phone_weibu .mobMenu > li {
  border-bottom: #424245 1px solid;
}
.phone_weibu .mobMenu > li > .subDepth > li > a {
  font-size: 1em;
  color: #9a9797;
  line-height: 28px;
}
.phone_weibu .mobMenu > li > a::before {
  background-color: #fff;
}
.phone_weibu .mobMenu > li > a::after {
  background-color: #fff;
}
.phone_weibu .mobMenu > li > .subDepth {
  display: none;
}
body {
  --container: 14.8125rem;
}
@media (max-width: 1600px) {
  body {
    --container: 10rem;
  }
}
@media (max-width: 1440px) {
  body {
    --container: 8rem;
  }
}
@media (max-width: 1280px) {
  body {
    --container: 6rem;
  }
}
@media (max-width: 990px) {
  body {
    --container: 15px;
  }
}
.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}
.container.container_l {
  padding: 0 0 0 var(--container);
}
.container.container_r {
  padding: 0 var(--container) 0 0;
}
/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}
.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}
.bu .iconfont {
  font-size: 3.125rem;
}
.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}
.ds {
  cursor: pointer;
}
.fenxiang .flex {
  justify-content: flex-start;
}
.fenxiang .social-share li {
  float: left;
  margin-right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}
.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  font-size: 1rem;
}
.serbtn {
  background: #198D9F;
}
.searchbox {
  border-color: #198D9F;
}
@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
  .pc_show_990 {
    display: none;
  }
  .phone_show_990 {
    display: block;
  }
}
.m-hidden {
  display: none;
}
@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
/*手机底部*/
@media (max-width: 990px) {
  .foot1-m {
    display: block;
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  width: 120px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span,
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .phone_lanu {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 65px;
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(40vh);
  height: -moz-calc(40vh);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px;
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}
.m-bm-nav .aniut.aniut_son {
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px 10px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav > li .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav > li .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}
.m-bm-head.white {
  background: #fff;
}
.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.m-bm-head.white .m-bm-menu {
  background: #fff;
}
.m-bm-head.white .m-bm-nav > li,
.m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav > li > a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav > li .sec a,
.m-bm-head.white .mrhgxt {
  color: #000;
}
.ajhhsd {
  color: #8B8B8B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding: 1em 0;
}
.ajhhsd a {
  color: #8B8B8B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.ajhhsd a:hover {
  color: #198D9F;
}
.ajhhsd span {
  padding: 0 0.3em;
}
.ajhhsd span:last-child {
  display: none;
}
.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
  background-size: cover;
  padding: 13.5rem 0 7.25rem;
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 4rem;
  background: transparent;
  color: #999;
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
  .pc_show_767 {
    display: none;
  }
  .phone_show_767 {
    display: block;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}
.sssjga {
  color: #333;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.ss-list li + li {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 1rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35em;
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: #198D9F;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5em;
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}
@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
.list_website ul li {
  padding: 1.875rem 0;
  border-bottom: 1px solid #ddd;
}
.list_website ul li:first-child {
  padding-top: 0;
}
.list_website ul li .top {
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  font-weight: 600;
}
.list_website ul li .bot {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #717171;
  margin-right: 1.25rem;
}
@media (max-width: 1600px) {
  body,
  html {
    font-size: calc(100vw / 110);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1440px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 95);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}
@media (max-width: 990px) {
  body,
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 var(--container);
  }
}
.phone {
  line-height: 60px;
  padding: 0 30px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #000;
}
.phone.white {
  background: #fff;
}
.phone.white .left img {
  filter: brightness(0);
}
@media (max-width: 767px) {
  .phone {
    padding: 0 15px;
  }
}
.phone > .clearfix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone.noLanuage .center {
  width: 60%;
  text-align: left;
  order: 1;
}
.phone.noLanuage .left {
  width: 40%;
  text-align: right;
  order: 2;
}
.phone.noLanuage .right {
  display: none;
}
.phone .left {
  width: 10%;
  text-align: right;
}
.phone .left img {
  height: 22px;
}
.phone .right {
  width: 10%;
  text-align: left;
}
.phone .right span {
  width: 1px;
  height: 10px;
  background: #1D1D1F;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 1px;
}
.phone .right a {
  font-weight: bold;
  font-size: 12px;
  color: #A7A7A8;
}
.phone .right a.c {
  color: #1D1D1F;
}
.phone .center {
  width: 80%;
  margin: 0 auto;
}
.phone .center img {
  height: 40px;
}
.sjj_nav {
  position: fixed;
  z-index: 9999;
  background: #1D1D1F;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 40px;
  top: 0;
  left: -100%;
  overflow: auto;
  overflow-x: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nav_show {
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav > ul > li:first-child {
  overflow: hidden;
  border-top: 0;
}
.sjj_nav > ul > li:first-child > a {
  width: 60%;
}
.sjj_nav > ul > li:first-child .language {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.sjj_nav > ul > li:first-child .language a {
  width: 25%;
  float: left;
  border-left: 1px #ddd solid;
  text-align: center;
  color: #999;
  display: inline-block;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.sjj_nav > ul > li:first-child .language a.active {
  background: #198D9F;
  color: #fff !important;
}
.sjj_nav > ul > li:first-child .language a:last-child {
  border-right: 1px #ddd solid;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  transform: rotate(0deg);
}
.sjj_nav ul li {
  position: relative;
  line-height: 40px;
  font-size: 14px;
}
.sjj_nav > ul > li:last-child {
  border-bottom: 1px #ddd solid;
}
.sjj_nav ul li ul {
  display: none;
}
.sjj_nav ul li i svg {
  width: 20px;
  height: 20px;
  fill: #555;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  fill: #198D9F;
}
.sjj_nav ul li ul li > ul {
  margin-left: 10px;
}
.sjj_nav .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #1D1D1F;
}
.sjj_nav .top .ta img {
  height: 40px;
  filter: brightness(0) invert(0.8);
  width: 120px;
}
.sjj_nav .top .fr img {
  height: 22px;
}
.sjj_nav .bot {
  padding: 25px 40px 0;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow: scroll;
}
.sjj_nav .bot > li:first-child {
  margin-bottom: 34px;
}
.sjj_nav .bot > li:first-child input {
  padding-left: 28px;
  width: 100%;
  font-size: 14px;
  color: #a7a7a7;
  line-height: 35px;
  border: 1px solid #A7A7A8;
  background: transparent;
}
.sjj_nav .bot > li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}
.sjj_nav .bot > li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 16px;
  padding: 0;
  border: none;
}
.sjj_nav .bot > li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}
.sjj_nav .bot > li > ul {
  padding-left: 1.25rem;
}
.sjj_nav .bot > li > div > a {
  width: calc(100% - 3.75rem);
}
.sjj_nav .bot > li > a {
  display: inline-block;
}
.sjj_nav .bot > li img {
  height: 30px;
}
.sjj_nav .bot > li .list .left {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot > li .list .left a {
  color: #EBEBEC;
}
.sjj_nav .bot > li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}
.sjj_nav .bot > li .list .right {
  width: 90%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}
.sjj_nav .bot > li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}
.sjj_nav .bot > li ul {
  margin-top: 20px;
}
.sjj_nav .bot > li > div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}
.sjj_nav .bot > li > div > a {
  color: #a7a7a7;
}
.sjj_nav .bot > li > div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}
.sjj_nav .bot > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #a7a7a7;
}
.sjj_nav .bot > li:hover > a::before,
.sjj_nav .bot > li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav .top .container {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .sjj_nav .top .container {
    padding: 0 15px;
  }
}
.rightfix {
  bottom: 10%;
  top: auto;
  transform: translateY(0);
  right: 1.25rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}
.rightfix li {
  cursor: pointer;
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  line-height: 3.375rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.25rem;
  position: relative;
  border: none !important;
}
.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #198D9F;
}
.rightfix li:hover .iconfont {
  background: rgba(25, 141, 159, 0.8);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}
.rightfix li:last-child::before {
  display: none;
}
.rightfix li::before {
  display: none;
}
.fixright_li_last {
  display: none;
}
.right_div.img {
  min-width: 7.5rem !important;
}
.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
header {
  position: fixed;
  line-height: 6.25rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}
header .container {
  padding: 0 5.625rem;
}
header.active {
  animation: sticky 0.65s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .logo img {
  height: 4.625rem;
}
header .ds1 {
  position: relative;
  padding-left: 1.4375rem;
  padding-right: 1.375rem;
}
header .ds1::before {
  content: '';
  display: block;
  width: 1px;
  height: 1rem;
  background-color: #E6E6E6;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .ds1 .iconfont {
  font-size: 1.75rem;
  display: block;
  font-weight: 600;
  color: #838383;
}
header .ds1:hover {
  cursor: pointer;
}
header .ds1:hover i {
  color: #198D9F;
}
header .lanuage {
  padding-left: 1rem;
  display: block;
}
header .lanuage a {
  font-size: 1.25rem;
  color: #838383;
  font-weight: 600;
  display: flex;
  align-items: center;
}
header .lanuage a .iconfont {
  font-size: 1.5rem;
  padding-right: 0.4375rem;
}
header .lanuage a.c {
  color: #198D9F;
}
header .lanuage a:hover i {
  color: #198D9F;
}
header .tel {
  margin-left: 0.625rem;
  color: #198D9F;
  font-family: Inter;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 1.375rem;
}
header .tel::before {
  content: '';
  display: block;
  width: 1px;
  height: 1rem;
  background-color: #E6E6E6;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .tel i {
  font-size: 1.5rem;
  color: #198D9F;
  font-weight: 600;
  margin-right: 0.5rem;
}
header .center > ul > li {
  float: left;
  padding: 0 2.5rem;
}
header .center > ul > li > a {
  font-size: 1.25rem;
  color: #838383;
  position: relative;
}
header .center > ul > li:hover > a {
  color: #198D9F;
}
header .center > ul > li:hover > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li.active > a {
  color: #198D9F;
}
header .center > ul > li.active > a::before {
  width: 100%;
  background-color: #198D9F;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
footer {
  background: #353742;
  padding-top: 2.5rem;
}
footer .left .logo {
  width: 7.25rem;
}
footer .right ul li i {
  font-size: 1.25rem;
  color: #fff;
  vertical-align: middle;
  margin-right: 0.875rem;
}
footer .right ul li:nth-child(1) {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
}
footer .right ul li:nth-child(1) i {
  font-weight: 400;
}
footer .right ul li:nth-child(2) {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
}
footer .le {
  width: 45%;
}
footer .le .tit {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}
footer .le .search_box {
  position: relative;
  width: 23.3125rem;
}
footer .le .search_box input {
  width: 100%;
  height: 3.75rem;
  border-radius: 3.75rem;
  background: #FFF;
  padding-left: 1.875rem;
  padding-right: 1.125rem;
}
footer .le .search_box button {
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: unset;
}
footer .le .search_box button i {
  font-size: 1.5rem;
  color: #838383;
}
footer .le .fenxiang .social-share li {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border: none;
  color: #fff;
}
footer .le .fenxiang .social-share li a {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  background-color: #198D9F;
  color: #fff !important;
  border: 1px solid #198D9F !important;
}
footer .le .fenxiang .social-share li a:hover {
  background-color: unset;
}
footer .ri {
  width: 55%;
}
footer .ri .footnav {
  display: flex;
  justify-content: space-between;
}
footer .ri .footnav .tt {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
}
footer .ri .footnav .subfootnav {
  margin-top: 1.25rem;
}
footer .ri .footnav .subfootnav .subfootli > a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}
footer .ri .footnav .subfootnav .subfootli > a:hover {
  font-weight: 600;
}
footer .copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  text-align: center;
  padding-bottom: 3.25rem;
}
footer .copyright a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}
footer .copyright p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}
footer .copyright .left span:nth-last-child(1) {
  display: none;
}
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.banner {
  position: relative;
}
.banner .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner .hover .p1 {
  color: #FFF;
  font-size: 4.375rem;
  font-weight: 700;
}
.banner .hover .p2 {
  color: #FFF;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 1.665rem;
}
.banner .hover2 {
  position: absolute;
  right: 10%;
  bottom: 3.125rem;
}
.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.banner .swiper-pagination {
  display: flex;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.banner .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.625rem;
  border: unset;
  opacity: unset;
  background: unset;
}
.banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 3.125rem;
  transform: translateX(-50%);
  z-index: 9;
  animation: xiangxia 2s infinite;
}
.banner .swiper-button-prev,
.banner .swiper-container-rtl .swiper-button-next {
  position: relative;
  left: unset;
  margin-top: 0;
  margin-right: 1.25rem;
  margin-left: 1.25rem;
}
.banner .swiper-button-next,
.banner .swiper-container-rtl .swiper-button-prev {
  position: relative;
  right: unset;
  margin-top: 0;
}
.banner .pagination2 {
  display: flex;
  align-items: center;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  background-color: unset;
  border: none;
  width: auto;
  height: auto;
  line-height: 1;
}
.banner .swiper-button-next i,
.banner .swiper-button-prev i {
  font-size: 0.75rem;
  color: #fff;
}
@keyframes xiangxia {
  0% {
    transform: translateY(-0.625rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.625rem);
  }
}
@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.banner .pagination2 {
  position: absolute;
  left: 0;
  padding: 0 var(--container);
  bottom: 5%;
  width: 100%;
  z-index: 20;
}
.banner .pagination2 .list {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  width: auto;
  height: 2rem;
  background: transparent;
  border-radius: 0;
  outline: 0;
}
.banner .pagination2 button {
  position: relative;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}
.banner .pagination2 .list + .list {
  margin-left: 2.5rem !important;
}
.banner .pagination2 button svg {
  position: absolute;
  width: 2rem;
  height: 2rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  left: 72%;
  top: 72%;
  transform: translate(-50%, -50%);
}
.banner .pagination2 .swiper-pagination-bullet-active button svg {
  animation-name: circ;
  animation-duration: 6.5s;
  -webkit-animation-name: circ;
  -webkit-animation-duration: 6.5s;
  stroke-dashoffset: 0\0;
  stroke-dasharray: 0\0;
}
.banner .pagination2 .list:nth-child(1).swiper-pagination-bullet-active button svg {
  animation-name: circ;
  animation-duration: 9.5s;
  stroke-dashoffset: 0\0;
  stroke-dasharray: 0\0;
}
.swiper-pagination {
  display: flex;
}
.swiper-button-next,
.swiper-button-prev {
  width: 3.375rem;
  height: 3.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b3b3b3;
  line-height: 3.375rem;
  text-align: center;
}
.swiper-button-next i,
.swiper-button-prev i {
  color: #000;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -6.25rem;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -6.25rem;
}
.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 1px solid #D9D9D9;
  opacity: 1;
  background: #D9D9D9;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #198D9F;
  border: unset;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.neibanner {
  position: relative;
}
.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.neibanner .neibanner_txt h3 {
  font-family: Inter;
  color: #FFF;
  font-size: 4rem;
  font-weight: 700;
}
.neibanner .neibanner_txt p {
  color: #FFF;
  font-family: Inter;
  font-size: 3.375rem;
  font-weight: 700;
  text-transform: uppercase;
}
.neibanner .mbxdh {
  position: absolute;
  bottom: 1.875rem;
}
.list_news_box {
  background: #F5F5F5;
  padding-bottom: 4.375rem;
}
.list_news_box .swipernews {
  overflow: hidden;
  padding-bottom: 5rem;
}
.list_news_box .swipernews .swiper-pagination {
  justify-content: center;
}
.list_news_box .swipernews .news_new_box {
  background-color: #fff;
  display: flex;
  border-radius: 1.25rem;
  overflow: hidden;
}
.list_news_box .swipernews .news_new_box .left {
  width: 50%;
}
.list_news_box .swipernews .news_new_box .left .img {
  height: 100%;
}
.list_news_box .swipernews .news_new_box .left .img .over {
  height: 100%;
}
.list_news_box .swipernews .news_new_box .left .img .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_news_box .swipernews .news_new_box .right {
  width: 50%;
  display: table;
}
.list_news_box .swipernews .news_new_box .right .newstxt {
  display: table-cell;
  vertical-align: middle;
  padding-left: 5.4375rem;
  padding-right: 4.5625rem;
}
.list_news_box .swipernews .news_new_box .right .newstxt h3 {
  color: #333;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}
.list_news_box .swipernews .news_new_box .right .newstxt .p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.5rem;
}
.list_news_box .swipernews .news_new_box .right .newstxt .p1 {
  color: #198D9F;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.yyhy_content {
  padding-bottom: 3.125rem;
}
.yyhy_content .yyhy_con {
  margin-bottom: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.yyhy_content .yyhy_con .yyhy_item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem;
  overflow: hidden;
}
.yyhy_content .yyhy_con .yyhy_item .over {
  height: 18.75rem;
}
.yyhy_content .yyhy_con .yyhy_item .over img {
  height: 100%;
  object-fit: cover;
}
.yyhy_content .yyhy_con .yyhy_item .text {
  padding: 1.5625rem 1.8125rem 1.9375rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yyhy_content .yyhy_con .yyhy_item .text h3 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.yyhy_content .yyhy_con .yyhy_item .text .time {
  padding-left: 1.875rem;
  position: relative;
}
.yyhy_content .yyhy_con .yyhy_item .text .time::before {
  content: '';
  display: block;
  width: 1px;
  height: 3.25rem;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}
.yyhy_content .yyhy_con .yyhy_item .text .time h3 {
  color: #777;
  font-family: Inter;
  font-size: 2.7841rem;
  font-weight: 700;
}
.yyhy_content .yyhy_con .yyhy_item .text .time p {
  margin-top: 0.625rem;
  color: #777;
  font-family: Inter;
  font-size: 0.8036rem;
  font-weight: 700;
}
.yyhy_content .yyhy_con .yyhy_item:hover .text .time h3 {
  color: #198D9F;
}
.yyhy_content .yyhy_con .yyhy_item:hover .text .time p {
  color: #198D9F;
}
.news_show_box {
  position: relative;
  background: #F9F9F9;
}
.news_show_box .news_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news_show_box .left {
  flex: 1;
  padding-left: var(--container);
  padding-right: 5.3125rem;
  padding-top: 5.625rem;
  padding-bottom: 5.875rem;
  background-color: #fff;
}
.news_show_box .left .content {
  border-top: 1px solid #D9D9D9;
  padding-top: 1.875rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: justify;
  line-height: 1.75rem;
}
.news_show_box .left .content table tr td {
  padding: 0.5rem;
}
.news_show_box .left .content img {
  width: 100%;
}
.news_show_box .left .content p {
  color: #636161;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.news_show_box .left .all_more {
  display: flex;
  align-items: center;
}
.news_show_box .left .all_more img {
  width: 1.375rem;
  vertical-align: middle;
  margin-right: 1.125rem;
}
.news_show_box .left .all_more:hover img {
  filter: brightness(0) invert(1);
}
.news_show_box .left .shangxia p,
.news_show_box .left .shangxia a {
  color: #000;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.8px;
}
.news_show_box .right {
  width: 37.5%;
  padding-top: 5rem;
  padding-bottom: 5.625rem;
  padding-right: var(--container);
  padding-left: 4.375rem;
  position: sticky;
  top: 5.3125rem;
  height: 100%;
}
.news_show_box .right .title h3 {
  color: #555;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 3.125rem;
}
.news_show_box .right ul li {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 1.375rem;
}
.news_show_box .right ul li .img {
  display: none;
  border-radius: 1.25rem;
  overflow: hidden;
}
.news_show_box .right ul li h3 {
  color: #555;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin-top: 1.5625rem;
}
.news_show_box .right ul li .p1 {
  color: #858585;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.6875rem;
}
.news_show_box .right ul li:nth-child(1) .img {
  display: block;
}
.news_show_box .right ul li:nth-child(1) h3 {
  margin-top: 0.8125rem;
}
.news_show_box .right ul li:hover {
  cursor: pointer;
}
.news_show_box .right ul li:hover h3,
.news_show_box .right ul li:hover p {
  color: #198D9F;
}
.news_show_box .right ul li:hover .img .over img {
  transform: scale(1.1);
}
.news_show_box .right ul li.nextpage {
  padding-top: 2.6875rem;
}
.news_show_box .right ul li.nextpage .tit span {
  color: #198D9F;
  font-size: 1.5rem;
  font-weight: 400;
}
.news_show_box .right ul li.nextpage .tit i {
  font-size: 1rem;
  color: #198D9F;
}
.news_show_box .right ul li.nextpage a {
  color: #555;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin-top: 0.375rem;
  margin-bottom: 0.6875rem;
}
.news_show_box .right ul li.nextpage .time {
  color: #858585;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}
.search-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  top: 0;
  left: 0;
  display: none;
}
.search-box {
  display: none;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}
.search-box input[type="text"] {
  padding: 1.5625rem;
  border: unset;
  border-radius: 1.25rem;
  width: 100%;
  outline: none;
}
.search-box button {
  background: unset;
  color: #999;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.875rem;
  top: 1.4375rem;
}
.search-box button i {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}
.all_title p {
  color: #198D9F;
  font-family: 'Arial';
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.all_title h3 {
  color: #333;
  font-size: 2.75rem;
  font-weight: 700;
  padding-bottom: 0.875rem;
  position: relative;
}
.all_title h3::before {
  content: '';
  display: block;
  width: 3.5938rem;
  height: 2px;
  background-color: #198D9F;
  position: absolute;
  bottom: 0;
  left: 0;
}
.all_title.ta h3::before {
  left: 50%;
  transform: translateX(-50%);
}
.all_more {
  display: inline-block;
  border: none;
  padding: 0.5625rem 2rem 0.5625rem 2.8125rem;
  color: #198D9F;
  text-align: center;
  font-size: 1rem;
  text-transform: capitalize;
  position: relative;
  z-index: 9;
  border-radius: 3.4375rem;
  line-height: 2;
}
.all_more i {
  display: inline-block;
  width: 0.7813rem;
  height: 0.5938rem;
  border-top: 2px solid #198D9F;
  border-right: 2px solid #198D9F;
  margin-left: 1.625rem;
}
.all_more::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #198D9F;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 3.4375rem;
}
.all_more::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  background: #198D9F;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 3.4375rem;
  z-index: -1;
}
.all_more:hover {
  cursor: pointer;
  color: #fff;
}
.all_more:hover i {
  border-color: #fff;
}
.all_more:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
}
.all_more:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.index_one {
  padding-top: 7.5rem;
  padding-bottom: 8.125rem;
  position: relative;
}
.index_one .desc {
  color: #676767;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.index_one .right #earth {
  margin-top: -7.5rem;
}
.index_one .right #tooltip {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  background: #FFF;
  color: #7C7C7C;
  padding: 5px 10px;
  border-radius: 1.6642rem;
  font-size: 1rem;
  pointer-events: none;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
  z-index: 1000;
}
.index_one .right #tooltip:empty {
  display: none;
}
.index_one .about_num {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_one .about_num .about_numli h3 {
  color: #198D9F;
  font-size: 4rem;
  font-weight: 800;
  line-height: 3.75rem;
}
.index_one .about_num .about_numli sub {
  color: #198D9F;
  font-size: 2rem;
  font-weight: 800;
  line-height: 3.75rem;
}
.index_one .about_num .about_numli p {
  color: #676767;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5625rem;
}
.index_two {
  position: relative;
}
.index_two .pc_show {
  display: block;
}
.index_two .m_show {
  display: none;
}
.index_two .content {
  width: 50%;
  position: absolute;
  top: 10.125rem;
  z-index: 9;
}
.index_two .content .desc {
  color: #676767;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: justify;
}
.index_three {
  padding-top: 6.25rem;
  padding-bottom: 4.375rem;
}
.index_three .top_flex {
  display: flex;
  justify-content: space-between;
  align-items: self-end;
}
.index_three .top_flex .tabul .tabli {
  padding: 0 0.9375rem;
}
.index_three .top_flex .tabul .tabli a {
  color: #838383;
  font-size: 1.25rem;
  font-weight: 500;
}
.index_three .top_flex .tabul .tabli.active a,
.index_three .top_flex .tabul .tabli:hover a {
  color: #198D9F;
}
.index_three .content .swiper_indexpro {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}
.index_three .content .swiper_indexpro .indexpro_box {
  position: relative;
}
.index_three .content .swiper_indexpro .indexpro_box::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(25, 141, 159, 0) 30.22%, #198D9F 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.index_three .content .swiper_indexpro .indexpro_box .text {
  position: absolute;
  width: 53%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  padding-left: 5rem;
}
.index_three .content .swiper_indexpro .indexpro_box .text h3 {
  color: #FFF;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  font-size: 2.5rem;
  font-weight: 700;
}
.index_three .content .swiper_indexpro .indexpro_box .text p {
  margin-top: 0.9375rem;
  color: #FFF;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6875rem;
}
.index_three .content .swiper_con {
  display: none;
}
.index_three .content .swiper_con.active {
  display: block;
}
.index_three .content .swiper_product {
  position: relative;
  overflow: hidden;
  margin: 0 -1.25rem;
  padding-bottom: 3.125rem;
}
.index_three .content .swiper_product .swiper-slide {
  padding: 0 1.25rem;
}
.index_three .content .swiper_product .swiper-slide .product_box {
  border-radius: 1.875rem;
  overflow: hidden;
  background: #E7E8EA;
}
.index_three .content .swiper_product .swiper-slide .product_box .over {
  padding: 3.4375rem 1.75rem;
  border-radius: 1.875rem;
  border: 1px solid #DFDFDF;
  background: #FFF;
}
.index_three .content .swiper_product .swiper-slide .product_box .text {
  padding-top: 2rem;
  padding-bottom: 1.8125rem;
  color: #838383;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.index_three .content .swiper_product .swiper-slide .product_box:hover {
  background-color: #198D9F;
}
.index_three .content .swiper_product .swiper-slide .product_box:hover .text {
  color: #fff;
}
.index_three .content .swiper_product .swiper-pagination {
  justify-content: center;
  bottom: 0;
}
.index_four {
  padding-top: 4.0625rem;
}
.index_four .top_flex {
  display: flex;
  justify-content: space-between;
  align-items: self-end;
}
.index_four .swiper_indexcase {
  position: relative;
  overflow: hidden;
}
.index_four .swiper_indexcase .indexcase_box {
  position: relative;
}
.index_four .swiper_indexcase .indexcase_box .text {
  position: absolute;
  bottom: 8.3125rem;
  padding-left: var(--container);
  color: #FFF;
  text-shadow: 0px 0px 1.25rem rgba(0, 0, 0, 0.1);
  font-size: 2.5rem;
  font-weight: 700;
}
.index_four .swiper_indexcase .swiper-pagination {
  bottom: 12.8125rem;
  padding-left: var(--container);
}
.index_four .swiper_indexcase .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: unset;
  margin-right: 1.875rem;
}
.index_four .swiper_indexcase .swiper-pagination-bullet.swiper-pagination-bullet-active i {
  width: 6.375rem;
}
.index_four .swiper_indexcase .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border: unset;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 2.5rem;
  background: unset;
}
.index_four .swiper_indexcase .swiper-pagination-bullet i {
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: #fff;
  vertical-align: middle;
  margin-left: 1rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_six {
  background: #F5F5F5;
  padding-top: 7.125rem;
  padding-bottom: 6.1875rem;
  position: relative;
  overflow: hidden;
}
.index_six .left {
  padding-right: 8.125rem;
}
.index_six .left .desc {
  color: #676767;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.125rem;
}
.index_six .right ul li {
  border-bottom: 1px solid #D9D9D9;
  padding-top: 1.6875rem;
  padding-bottom: 2.1875rem;
  position: relative;
}
.index_six .right ul li::before {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background-color: #198D9F;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_six .right ul li .le {
  width: 70%;
  padding-right: 3.4375rem;
  display: flex;
  align-items: self-start;
}
.index_six .right ul li .le .num {
  color: rgba(51, 51, 51, 0.4);
  font-size: 1rem;
  font-weight: 400;
}
.index_six .right ul li .le .text {
  padding-left: 1.125rem;
}
.index_six .right ul li .le .text h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_six .right ul li .le .text .p1 {
  margin-top: 0.75rem;
  color: #676767;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
  display: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_six .right ul li .ri {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.index_six .right ul li .ri .img {
  width: 10.125rem;
  height: 10.125rem;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  right: 1.25rem;
  transform: scale(0.5);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_six .right ul li .ri .i {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(25, 141, 159, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_six .right ul li .ri .i i {
  font-size: 1.5rem;
  color: #fff;
  font-size: 300;
  display: none;
}
.index_six .right ul li .ri .i u {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #198D9F;
  border-radius: 50%;
}
.index_six .right ul li.active::before,
.index_six .right ul li:hover::before {
  width: 100%;
}
.index_six .right ul li.active .le .text h3,
.index_six .right ul li:hover .le .text h3 {
  margin-top: 0;
}
.index_six .right ul li.active .le .text .p1,
.index_six .right ul li:hover .le .text .p1 {
  display: block;
}
.index_six .right ul li.active .ri .img,
.index_six .right ul li:hover .ri .img {
  opacity: 1;
  transform: scale(1);
}
.index_six .right ul li.active .ri .i,
.index_six .right ul li:hover .ri .i {
  background-color: #198D9F;
  position: relative;
  z-index: 99;
}
.index_six .right ul li.active .ri .i i,
.index_six .right ul li:hover .ri .i i {
  display: block;
}
.index_six .right ul li.active .ri .i u,
.index_six .right ul li:hover .ri .i u {
  display: none;
}
.index_six .text_float {
  color: rgba(51, 51, 51, 0.4);
  font-family: Inter;
  font-size: 13.125rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.04;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.top_flex {
  display: flex;
  justify-content: space-between;
  align-items: self-end;
  flex-wrap: wrap;
}
.index_seven .content .swiper_indexnews {
  position: relative;
  overflow: hidden;
  margin: 0 -1.25rem;
  padding-bottom: 5rem;
}
.index_seven .content .swiper_indexnews .swiper-slide {
  padding: 0 1.25rem;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box {
  border-radius: 1.25rem;
  background: #F8F8F8;
  overflow: hidden;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box .over {
  height: 20.125rem;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box .text {
  padding: 1.875rem 1.8125rem 1.875rem 2.25rem;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box .text .title {
  width: 75%;
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 0.625rem;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box .text .time h3 {
  color: #198D9F;
  font-family: Inter;
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
}
.index_seven .content .swiper_indexnews .swiper-slide .indexnews_box .text .time p {
  color: #198D9F;
  font-family: Inter;
  font-size: 0.75rem;
  font-weight: 700;
}
.index_seven .content .swiper_indexnews .swiper-pagination {
  justify-content: center;
}
.about_one {
  padding-top: 6.875rem;
  padding-bottom: 5.625rem;
}
.about_one .left {
  padding-right: 2.1875rem;
}
.about_one .left .desc {
  color: #676767;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.about_one .right {
  padding-left: 3.75rem;
}
.about_one .right .over {
  border-radius: 1.875rem;
}
.about_one .about_num {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_one .about_num .about_numli h3 {
  color: #198D9F;
  font-size: 4rem;
  font-weight: 800;
  line-height: 3.75rem;
}
.about_one .about_num .about_numli sub {
  color: #198D9F;
  font-size: 2rem;
  font-weight: 800;
  line-height: 3.75rem;
}
.about_one .about_num .about_numli p {
  color: #676767;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5625rem;
}
.about_two .bgimg .m_show {
  display: none;
}
.about_two .bgimg .pc_show {
  display: block;
}
.about_two .content {
  padding-top: 10.9375rem;
  position: absolute;
  top: 0;
  left: 0;
}
.about_two .content .desc {
  width: 31%;
  color: #676767;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
#ryzz {
  display: none;
  width: 80%;
  padding: 0;
  border-radius: 1.875rem;
  box-shadow: 0px 0px 1.9375rem 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  #ryzz {
    border-radius: 1.25rem;
    width: 90%;
  }
}
#ryzz .carousel__button.is-close {
  top: 2.5rem;
  right: 2.5rem;
  color: #000;
}
@media (max-width: 768px) {
  #ryzz .carousel__button.is-close {
    top: 1rem;
    right: 1rem;
  }
}
#ryzz .ryzz-cont1 {
  position: relative;
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
  overflow: hidden;
}
#ryzz .ryzz-cont1 u {
  display: block;
  font-size: 0;
}
#ryzz .ryzz-cont1 u img {
  width: 100%;
}
#ryzz .ryzz-cont1 .cont-p {
  position: absolute;
  left: 3%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33%;
  top: 50%;
}
@media (max-width: 768px) {
  #ryzz .ryzz-cont1 .cont-p {
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    padding: 0 5%;
    width: 100%;
    margin-top: 1rem;
  }
}
#ryzz .ryzz-cont1 .cont-p .tit {
  color: #555555;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  #ryzz .ryzz-cont1 .cont-p .tit {
    font-size: 1.35rem;
  }
}
#ryzz .ryzz-cont1 .cont-p .txt {
  color: #555555;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-top: 0.65rem;
}
#ryzz .ryzz-cont2 {
  padding: 2rem 5%;
}
#ryzz .ryzz-cont2 .asx-asxrt1 {
  margin-bottom: 2.5rem;
  border-radius: 5rem;
  overflow: hidden;
}
#ryzz .ryzz-cont2 .asx-asxrt1 li {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
#ryzz .ryzz-cont2 .asx-asxrt1 li a {
  display: block;
  background: rgba(25, 141, 159, 0.5);
  color: #fff;
  font-size: 1.125rem;
  line-height: 2em;
  padding: 1em 0;
}
@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .asx-asxrt1 li a {
    padding: 0.5em 0;
  }
}
#ryzz .ryzz-cont2 .asx-asxrt1 li a:focus {
  outline: none;
}
#ryzz .ryzz-cont2 .asx-asxrt1 li.on a {
  background: #198D9F;
}
#ryzz .ryzz-cont2 .ryzz_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}
@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .ryzz_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  #ryzz .ryzz-cont2 .ryzz_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem 1rem;
  }
}
#ryzz .ryzz-cont2 .ryzz_list1 li {
  text-align: center;
  border-bottom: 1px solid #D9D9D9;
}
#ryzz .ryzz-cont2 .ryzz_list1 li .img {
  border-radius: 0px 0px 2.25rem 0px;
  background: #FFF;
  box-shadow: 0px 0px 1.9375rem 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 21.875rem;
}
#ryzz .ryzz-cont2 .ryzz_list1 li .img img {
  width: auto;
  height: 100%;
}
#ryzz .ryzz-cont2 .ryzz_list1 li .tit {
  color: #555555;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1em 0 1.5em;
}
@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .ryzz_list1 li .tit {
    padding: 0.75em 0 0.5em;
  }
}
.about_three {
  padding-top: 7.1875rem;
}
.about_three .all_title h3::before {
  left: 50%;
  transform: translateX(-50%);
}
.about_three .content ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about_three .content ul li {
  height: 31.4375rem;
  display: table;
  padding: 2.375rem;
  position: relative;
  background: #F5F5F5;
}
.about_three .content ul li .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.about_three .content ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_three .content ul li .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(25, 141, 159, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}
.about_three .content ul li .text_box {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}
.about_three .content ul li .icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
}
.about_three .content ul li .text {
  height: 3.125rem;
  overflow: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.about_three .content ul li .text h3 {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.about_three .content ul li .text p {
  margin-top: 1.0625rem;
  color: #FFF;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
}
.about_three .content ul li.active .img,
.about_three .content ul li:hover .img {
  opacity: 1;
  z-index: 1;
}
.about_three .content ul li.active .icon img,
.about_three .content ul li:hover .icon img {
  filter: brightness(0) invert(1);
}
.about_three .content ul li.active .text,
.about_three .content ul li:hover .text {
  height: 16.875rem;
}
.about_three .content ul li.active .text h3,
.about_three .content ul li:hover .text h3 {
  color: #fff;
}
.about_three .content ul li.active .text p,
.about_three .content ul li:hover .text p {
  height: auto;
}
.channel_box {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.channel_box .channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.channel_box .channel li {
  flex: 1;
  padding: 0 1px;
}
.channel_box .channel li .li {
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_box .channel li .li a {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 1.5rem;
  text-align: center;
}
.channel_box .channel li.active .li,
.channel_box .channel li:hover .li {
  background-color: #198D9F;
}
.channel_box .swiper_prolm {
  position: relative;
  overflow: hidden;
  margin: 0 -1px;
}
.channel_box .swiper_prolm .swiper-slide {
  padding: 0 1px;
}
.channel_box .swiper_prolm .swiper-slide .peolm_box {
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.channel_box .swiper_prolm .swiper-slide .peolm_box a {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 1.5rem;
  text-align: center;
}
.channel_box .swiper_prolm .swiper-slide.active .peolm_box,
.channel_box .swiper_prolm .swiper-slide:hover .peolm_box {
  background-color: #198D9F;
}
.channel_box .swiper-button-next,
.channel_box .swiper-button-prev {
  width: auto;
  height: auto;
  background-color: unset;
  border: none;
  line-height: unset;
  margin-top: 0;
  transform: translateY(-50%);
}
.channel_box .swiper-button-next i,
.channel_box .swiper-button-prev i {
  font-size: 2.125rem;
  color: #fff;
  font-weight: 300;
}
.channel_box .swiper-button-prev,
.channel_box .swiper-container-rtl .swiper-button-next {
  left: calc(var(--container) - 2.75rem);
}
.channel_box .swiper-button-next,
.channel_box .swiper-container-rtl .swiper-button-prev {
  right: calc(var(--container) - 2.75rem);
}
.list_pro_channel {
  position: relative;
}
.list_pro_channel .channel_img {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}
.list_pro_channel .channel_img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(25, 141, 159, 0) 30.22%, #198D9F 100%);
  position: absolute;
  top: 0;
}
.list_pro_channel .text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5rem;
}
.list_pro_channel .text h3 {
  color: #FFF;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  font-size: 2.5rem;
  font-weight: 700;
}
.list_pro_channel .text p {
  width: 50%;
  margin-top: 0.9375rem;
  color: #FFF;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6875rem;
}
@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }
  50% {
    background-position: 70% 100%;
  }
  100% {
    background-position: 31% 0%;
  }
}
.list_pro_tag {
  padding-bottom: 3rem;
}
.list_pro_tag .tag_box {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.25rem;
}
.list_pro_tag .tag_box .tag a {
  color: #198D9F;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.125rem;
  height: 3.125rem;
  border-radius: 3.75rem;
  border: 1px solid #198D9F;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_pro_tag .tag_box .tag.active a,
.list_pro_tag .tag_box .tag:hover a {
  background-color: #198D9F;
  color: #fff;
}
.list_product .product_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.list_product .product_box .product_item {
  border-radius: 1.875rem;
  overflow: hidden;
  background: #E7E8EA;
}
.list_product .product_box .product_item .over {
  padding: 3.4375rem 1.75rem;
  border-radius: 1.875rem;
  border: 1px solid #DFDFDF;
  background: #FFF;
}
.list_product .product_box .product_item .text {
  padding-top: 2rem;
  padding-bottom: 1.8125rem;
  color: #838383;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.list_product .product_box .product_item:hover {
  background-color: #198D9F;
}
.list_product .product_box .product_item:hover .text {
  color: #fff;
}
.pro_ban {
  background: #F5F5F5;
  padding-top: 6.25rem;
  padding-bottom: 7.6875rem;
}
.pro_ban .row {
  padding-top: 2.5rem;
}
.pro_ban .left {
  display: table;
}
.pro_ban .left .text_box {
  display: table-cell;
  vertical-align: middle;
}
.pro_ban .left .text_box .subtit {
  color: #198D9F;
  font-size: 1.5rem;
  font-weight: 400;
}
.pro_ban .left .text_box .title {
  color: #333;
  font-size: 3.375rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}
.pro_ban .left .text_box .title::before {
  content: '';
  display: block;
  width: 3.625rem;
  height: 2px;
  background-color: #198D9F;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pro_ban .right {
  padding-left: 2.5rem;
}
.pro_ban .right .over {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
.show_product_two {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.show_product_two .swiper_showproduct {
  position: relative;
  overflow: hidden;
  margin: 0 -1.25rem;
  padding-bottom: 3.125rem;
}
.show_product_two .swiper_showproduct .swiper-slide {
  padding: 0 1.25rem;
}
.show_product_two .swiper_showproduct .swiper-slide .product_box {
  border-radius: 1.875rem;
  overflow: hidden;
  background: #E7E8EA;
}
.show_product_two .swiper_showproduct .swiper-slide .product_box .over {
  padding: 3.4375rem 1.75rem;
  border-radius: 1.875rem;
  border: 1px solid #DFDFDF;
  background: #FFF;
}
.show_product_two .swiper_showproduct .swiper-slide .product_box .text {
  padding-top: 2rem;
  padding-bottom: 1.8125rem;
  color: #838383;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.show_product_two .swiper_showproduct .swiper-slide .product_box:hover {
  background-color: #198D9F;
}
.show_product_two .swiper_showproduct .swiper-slide .product_box:hover .text {
  color: #fff;
}
.show_product_two .swiper_showproduct .swiper-pagination {
  justify-content: center;
  bottom: 0;
}
.show_product_three {
  background: #F5F5F5;
  padding-top: 5.3125rem;
  padding-bottom: 5.3125rem;
}
.show_product_three .content .swiper_showcase {
  position: relative;
  overflow: hidden;
  margin: 0 -1.25rem;
  padding-bottom: 5rem;
}
.show_product_three .content .swiper_showcase .swiper-slide {
  padding: 0 1.25rem;
}
.show_product_three .content .swiper_showcase .swiper-slide .case_box {
  border-radius: 1.875rem;
  overflow: hidden;
  position: relative;
}
.show_product_three .content .swiper_showcase .swiper-slide .case_box .over {
  height: 25.875rem;
}
.show_product_three .content .swiper_showcase .swiper-slide .case_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show_product_three .content .swiper_showcase .swiper-slide .case_box .text {
  width: 100%;
  position: absolute;
  bottom: 2.375rem;
  left: 0;
  color: #FFF;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.show_product_three .content .swiper_showcase .swiper-pagination {
  justify-content: center;
  bottom: 0;
}
.list_service {
  padding-top: 6.875rem;
  padding-bottom: 5.8125rem;
}
.list_service .left {
  padding-right: 5rem;
}
.list_service .left .desc p {
  color: #676767;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_service .left .desc .tit {
  padding: 0.3125rem 2.9375rem 0.3125rem 1.25rem;
  display: inline-block;
  background: linear-gradient(90deg, #198D9F 0%, rgba(25, 141, 159, 0) 100%);
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
}
.list_service .right {
  padding-left: 1.875rem;
}
.list_service .right .ri_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.list_service .right .ri_box .ri_i {
  border-radius: 1.875rem;
  overflow: hidden;
}
.list_service .right .ri_box .ri_i.ri_ii {
  padding: 2.625rem 1.625rem 2.4375rem;
}
.list_service .right .ri_box .ri_i.ri_ii h3 {
  color: #FFF;
  text-align: center;
  font-size: 3.375rem;
  font-weight: 400;
}
.list_service .right .ri_box .ri_i.ri_ii p {
  margin-top: 0.3125rem;
  color: #FFF;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_service .right .ri_box .ri_i:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/3;
}
.list_service .right .ri_box .ri_i:nth-child(2) {
  background: #198D9F;
}
.list_service .right .ri_box .ri_i:nth-child(3) {
  background: #353742;
}
.list_service_two {
  padding-top: 7.75rem;
  padding-bottom: 6.9375rem;
  background: #F5F5F5;
}
.list_service_two .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.875rem;
}
.list_service_two .grid_box .grid_item {
  border-radius: 1.875rem;
  background: #FFF;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  padding: 6.125rem 5.1875rem 5rem 5.1875rem;
}
.list_service_two .grid_box .grid_item .icon {
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background-color: #198D9F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_service_two .grid_box .grid_item .icon img {
  width: 45%;
}
.list_service_two .grid_box .grid_item .text {
  flex: 1;
  padding-left: 2.5rem;
}
.list_service_two .grid_box .grid_item .text h3 {
  color: #198D9F;
  font-family: Inter;
  font-size: 1.5rem;
  font-weight: 600;
}
.list_service_two .grid_box .grid_item .text p {
  margin-top: 0.8125rem;
  color: #676767;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: justify;
}
.list_service_three {
  padding-top: 5.8125rem;
  padding-bottom: 5.8125rem;
}
.list_service_three .left {
  padding-right: 2.25rem;
}
.list_service_three .left .over {
  border-radius: 30px;
}
.list_service_three .right {
  padding-left: 1.25rem;
  display: table;
}
.list_service_three .right .text_box {
  display: table-cell;
  vertical-align: middle;
}
.list_service_three .right .text_box .tit {
  padding: 0.3125rem 2.9375rem 0.3125rem 1.25rem;
  display: inline-block;
  background: linear-gradient(90deg, #198D9F 0%, rgba(25, 141, 159, 0) 100%);
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
}
.list_service_three .right .text_box .desc {
  color: #676767;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_fangan {
  padding-top: 4.5625rem;
  padding-bottom: 5.625rem;
}
.list_fangan .fangan_box .fangan_item:not(:nth-last-child(1)) {
  margin-bottom: 5.625rem;
}
.list_fangan .fangan_box .fangan_item .row {
  align-items: center;
}
.list_fangan .fangan_box .fangan_item .left {
  padding-right: 2.5rem;
}
.list_fangan .fangan_box .fangan_item .left .over {
  border-radius: 1.875rem;
}
.list_fangan .fangan_box .fangan_item .right {
  display: table;
}
.list_fangan .fangan_box .fangan_item .right .txt {
  display: table-cell;
  vertical-align: middle;
}
.list_fangan .fangan_box .fangan_item .right .txt h3 {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
}
.list_fangan .fangan_box .fangan_item .right .txt p {
  margin-top: 1.25rem;
  color: #676767;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6875rem;
}
.list_case {
  padding-top: 3.125rem;
  padding-bottom: 4.375rem;
}
.list_case .case_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.list_case .case_box .case_item .over {
  height: 17.5rem;
  border-radius: 1.875rem;
}
.list_case .case_box .case_item .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_case .case_box .case_item .text {
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
  text-align: center;
}
.new_ban {
  padding-top: 8.125rem;
  padding-bottom: 10rem;
  background-size: cover;
}
.new_ban .ajhhsd {
  color: #fff;
}
.new_ban .ajhhsd a {
  color: #fff;
}
.new_ban .title h3 {
  color: #FFF;
  font-size: 2.3125rem;
  font-weight: 400;
  line-height: 3.125rem;
}
.new_ban .title .share_box {
  display: flex;
  align-items: center;
}
.new_ban .title .share_box .time {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
}
.new_ban .title .share_box .ri {
  margin-left: 1.125rem;
}
.new_ban .title .share_box .ri > p {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
}
.new_ban .title .share_box .ri .social-share .social-share-icon {
  border: 1px solid #FFF;
  color: #fff;
  font-size: 1rem;
}
.list_faq_box {
  background: #F5F5F5;
  padding-bottom: 12.5rem;
}
.list_faq_box ul li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #D9D9D9;
  padding-top: 1.625rem;
  padding-bottom: 2.75rem;
  padding-left: 2.25rem;
  padding-right: 1.75rem;
}
.list_faq_box ul li .icon {
  width: 2.75rem;
  height: 2.75rem;
}
.list_faq_box ul li .ii i {
  font-size: 1.25rem;
  color: #6D6D6D;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_faq_box ul li .text {
  flex: 1;
  padding-left: 1.5rem;
  padding-right: 1.6875rem;
}
.list_faq_box ul li .text h3 {
  color: #2A2926;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.75rem;
  cursor: pointer;
}
.list_faq_box ul li .text .p {
  margin-top: 1.0625rem;
  color: #656565;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
}
.list_faq_box ul li .text .bottom {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
}
.list_faq_box ul li .text .bottom u {
  display: inline-block;
  width: 1.6875rem;
}
.list_faq_box ul li .text .bottom span {
  color: #6D6D6D;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-left: 0.9375rem;
}
.list_faq_box ul li .text .bottom i {
  font-size: 1.6875rem;
  color: #6D6D6D;
  vertical-align: middle;
}
.list_faq_box ul li.active {
  background-color: #fff;
  border-radius: 1.25rem;
  border-bottom: none;
}
.list_join_one {
  padding-bottom: 10rem;
  background: #F5F5F5;
}
.list_join_one .content {
  padding-top: 6.25rem;
}
.list_join_one .content .desc {
  margin-top: 1.875rem;
}
.list_join_one .content .desc h3 {
  color: #000;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 0.8125rem;
}
.list_join_one .content .desc p {
  color: #888887;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.5rem;
}
.list_join_two {
  padding-top: 7.0625rem;
  padding-bottom: 4.5625rem;
}
.list_join_two .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem 0;
}
.list_join_two .grid_box .grid_item {
  border-right: 1px solid #C9C9C9;
}
.list_join_two .grid_box .grid_item:nth-child(4),
.list_join_two .grid_box .grid_item:nth-child(8) {
  border-right: unset;
}
.list_join_two .grid_box .grid_item .icon {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_join_two .grid_box .grid_item .icon img {
  width: 46%;
}
.list_join_two .grid_box .grid_item .text {
  color: #4A4A4A;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.6875rem;
  text-align: center;
}
.list_join_three {
  padding-top: 6.25rem;
  padding-bottom: 4.375rem;
}
.list_join_three .content ul li {
  border-radius: 1.875rem;
  border: 1px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.list_join_three .content ul li:not(:nth-last-child(1)) {
  margin-bottom: 1.6875rem;
}
.list_join_three .content ul li .flex_top {
  padding: 1.5625rem 2rem 1.625rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_join_three .content ul li .flex_top .text h3 {
  color: #4A4A4A;
  font-size: 1.5rem;
  font-weight: 700;
}
.list_join_three .content ul li .flex_top .text p {
  margin-top: 0.9375rem;
  margin-left: -0.8125rem;
}
.list_join_three .content ul li .flex_top .text p span {
  color: #4A4A4A;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 0.8125rem;
  position: relative;
  display: inline-block;
}
.list_join_three .content ul li .flex_top .text p span:not(:last-child)::before {
  content: '';
  display: block;
  width: 1px;
  height: 1.125rem;
  background-color: rgba(74, 74, 74, 0.2);
  position: absolute;
  right: 0;
  top: 0.125rem;
}
.list_join_three .content ul li .flex_top .right .icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid #E3E3E3;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_join_three .content ul li .flex_top .right .icon i {
  font-size: 0.75rem;
  line-height: 1;
}
.list_join_three .content ul li .con_text {
  padding: 1.0625rem 3.5rem 3.1875rem 3.5rem;
}
.list_join_three .content ul li .con_text h3 {
  color: #737373;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  margin-bottom: 0.625rem;
}
.list_join_three .content ul li .con_text p {
  color: #737373;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}
.list_join_three .content ul li .con_text .bottom {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
}
.list_join_three .content ul li .con_text .bottom .icon {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background-color: #198D9F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_join_three .content ul li .con_text .bottom .icon i {
  font-size: 1.25rem;
  color: #fff;
}
.list_join_three .content ul li .con_text .bottom .tit {
  padding-left: 0.875rem;
  color: #198D9F;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_join_three .content ul li .con_text .bottom .tit a {
  color: #198D9F;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}
.list_join_three .content ul li.active .flex_top {
  background: #F5F5F5;
}
.list_join_three .content ul li.active .flex_top .right .icon {
  transform: rotate(180deg);
}
.list_contact_one {
  padding-top: 6.875rem;
}
.list_contact_one .left .tit {
  color: #464646;
  text-align: justify;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}
.list_contact_one .left ul {
  margin-top: 1.4375rem;
}
.list_contact_one .left ul li {
  display: flex;
  align-items: center;
}
.list_contact_one .left ul li .icon i {
  color: #198D9F;
  font-size: 1.5rem;
}
.list_contact_one .left ul li .text {
  flex: 1;
  padding-left: 0.75rem;
  color: #504F4F;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}
.list_contact_one .right .ewm_box {
  display: flex;
  align-items: center;
}
.list_contact_one .right .ewm_box .ewm {
  width: 11.5rem;
}
.list_contact_one .right .ewm_box .ewm .img {
  padding: 1rem;
  border-radius: 0.5625rem;
  background: #F5F5F5;
}
.list_contact_one .right .ewm_box .ewm:nth-child(1) {
  margin-right: 2.4375rem;
}
.list_contact_one .right .ewm_box .ewm .text {
  color: #504F4F;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 3.125rem;
  text-align: center;
}
.list_contact_one .content2 {
  border-radius: 1.875rem;
  overflow: hidden;
}
.list_contact_two {
  padding-bottom: 7.5rem;
}
.list_contact_two .content {
  margin-top: 0.75rem;
}
.list_contact_two .content .inpt p {
  color: #484848;
  font-size: 1rem;
  font-weight: 700;
}
.list_contact_two .content .inpt p span {
  color: #E50012;
  margin-right: 0.3125rem;
}
.list_contact_two .content .msg_aa label {
  color: #484848;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 1.6875rem;
  margin-top: 1.0625rem;
}
.list_contact_two .content .msg_aa label input {
  margin-right: 0.5625rem;
}
.list_contact_two .content .msg-a1 {
  margin-top: 1.4375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0625rem 3.625rem;
}
.list_contact_two .content .msg-a1 .inpt input {
  margin-top: 0.5rem;
  width: 100%;
  height: 3.75rem;
  border-radius: 3.75rem;
  border: 1px solid #CFCFCF;
  background: #FFF;
  padding: 0 2.125rem;
}
.list_contact_two .content .msg-a3 {
  margin-top: 2rem;
}
.list_contact_two .content .msg-a3 .inpt textarea {
  margin-top: 0.875rem;
  width: 100%;
  border-radius: 1.8125rem;
  border: 1px solid #CFCFCF;
  background: #FFF;
  padding: 0.8125rem 2.125rem;
}
.list_contact_two .content .checkbox {
  margin-top: 1.625rem;
  color: #868686;
  font-size: 1rem;
  font-weight: 400;
}
.list_contact_two .content .checkbox a {
  color: #656565;
}
.list_contact_two .content .div_aghgha {
  margin: 1.875rem auto 0;
  text-align: center;
}
.list_contact_two .content .div_aghgha button {
  background: unset;
}
.show_pc {
  display: block;
}
.show_phone {
  display: none;
}
@media (max-width: 767px) {
  .show_pc {
    display: none;
  }
  .show_phone {
    display: block;
  }
}
.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 30%;
  z-index: 999;
  width: 3.125rem;
  background: #fff;
  border: 0.5px solid #DAD9D9;
  box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
  border-radius: 1.5625rem;
}
@media (max-width: 768px) {
  .zd_erha {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0;
}
.zd_erha .aat_list li + li:after {
  content: "";
  width: 50%;
  height: 1px;
  background: #DEDDDD;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hidden {
  display: none;
}
.zd_erha .aat_list li > a {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  background: white;
  margin: 0 auto;
  padding: 10% 15%;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.zd_erha .aat_list li > a:hover {
  background: #f0f0f0;
}
.zd_erha .aat_list li > a img {
  width: 100%;
  height: 100%;
}
.zd_erha .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1rem;
  width: auto;
  right: -webkit-calc(115%);
  right: -moz-calc(115%);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -o-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.zd_erha .aat_list li .cbl-cont.erghgsb {
  width: 9rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.zd_erha .aat_list li .cbl-cont.erghgsb img {
  width: 100%;
}
.zd_erha .aat_list li:hover .cbl-cont {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
